home *** CD-ROM | disk | FTP | other *** search
/ Clickx 75 / Clickx 75.iso / software / expressionweb / expressionwebv3 / ExpressionWeb_en.exe / Setup / WeImp.cab / PsdImaging.dll / XML / MIPMAPEFFECT.XML < prev    next >
Encoding:
Extensible Markup Language  |  2009-07-15  |  1.2 KB  |  27 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <effect label="MipMap">
  3.   <description>
  4.     Creates/caches a power-of-two "pyramid" (MipMap) of scaled versions of its input.
  5.     It supports the internal property (matrix) _AppliedTransformMatrix and uses it to decide
  6.     the scaled version to return. Used in a pipeline to allow extreme transforms to be rendered effectively since it generates and caches scaled versions.
  7.     It does its scaling using bi-linear interpolation.
  8.   </description>
  9.  
  10.   <scale type="power2"/>
  11.  
  12.   <property name="HasCacheLevel0" type="bool" label="Should it cache level 0 of the MipMap" default="false" />
  13.   <property name="TransformMatrix" type="float[16]" default="1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1" label="Transform Matrix" />
  14.   <property name="MipMapTileSize" type="int" label="Size in KBytes of tiles" default="64">
  15.     <comments>
  16.       The MipMapTileSize is in KBytes, not Bytes
  17.     </comments>
  18.   </property>
  19.  
  20.   <input index="0">
  21.     <comments>
  22.       Only calls input if it hasn't already cached it OR if it hasn't already read it before to generated the higher levels of the MipMap pyramid.
  23.     </comments>
  24.   </input>
  25.  
  26. </effect>
  27.